home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-2000 - Modelworks Software
- // @Created build 237 cm19981119
-
- // Insert script helper for:
-
- /**
- @Object: Package
- @Property: includeInBuild - returns true if this package
- is to be included in the build.
- @Syntax: pkg.includeInBuild
- @Summary: includeInBuild - controls how files are included
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("pkg.includeInBuild", selection);
- editor.setActive("Insert p.includeInBuild");
- }
- }
-
- !!/Script
-